home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / programs_-_include / ASM-PPC / SCATTERL.{1C < prev    next >
Text File  |  1999-09-17  |  340b  |  15 lines

  1. #ifndef _PPC_SCATTERLIST_H
  2. #define _PPC_SCATTERLIST_H
  3.  
  4. #include <asm/dma.h>
  5.  
  6. struct scatterlist {
  7.     char *  address;    /* Location data is to be transferred to */
  8.     char * alt_address; /* Location of actual if address is a 
  9.              * dma indirect buffer.  NULL otherwise */
  10.     unsigned int length;
  11. };
  12.  
  13.  
  14. #endif /* !(_PPC_SCATTERLIST_H) */
  15.